ds_stack_copy

Copies the contents of one stack to another.

语法:

ds_stack_copy(id, source);


参数 描述
id The id of the NEW stack.
source The ORIGINAL stack to copy to id.


返回: N/A(无返回值)


描述

This function can be used to copy the contents of one stack into another. Note that this does NOT remove the contents from the original stack, nor does it destroy the original stack. When using this function the stack being copied to must have been previously created and if it contained any items before the copy, then these will be cleared first (meaning this information will be lost).


例如:

with (instance_create_layer(x, y, "Enemies", obj_Enemy))
   {
   stack = ds_stack_create();
   ds_stack_copy(stack, other.stack);
   }

The above function creates a new instance and then in that instance it creates a new ds_stack and copies the contents of the stack in the instance running the code block, into the newly created instance stack.


上一页: Stacks
下一页: ds_stack_top
© Copyright YoYo Games Ltd. 2018 All Rights Reserved